home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / k3bvideodvddoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-05-27  |  1.2 KB  |  47 lines

  1. /* 
  2.  *
  3.  * $Id: k3bvideodvddoc.h 619556 2007-01-03 17:38:12Z trueg $
  4.  * Copyright (C) 2003 Sebastian Trueg <trueg@k3b.org>
  5.  *
  6.  * This file is part of the K3b project.
  7.  * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  * See the file "COPYING" for the exact licensing terms.
  14.  */
  15.  
  16. #ifndef _K3B_VIDEODVD_DOC_H_
  17. #define _K3B_VIDEODVD_DOC_H_
  18.  
  19. #include <k3bdvddoc.h>
  20. #include "k3b_export.h"
  21. class KConfig;
  22.  
  23. class LIBK3B_EXPORT K3bVideoDvdDoc : public K3bDvdDoc
  24. {
  25.  public:
  26.   K3bVideoDvdDoc( QObject* parent = 0 );
  27.   virtual ~K3bVideoDvdDoc();
  28.  
  29.   virtual int type() const { return VIDEODVD; }
  30.  
  31.   virtual K3bBurnJob* newBurnJob( K3bJobHandler* hdl, QObject* parent );
  32.  
  33.   virtual bool newDocument();
  34.  
  35.   K3bDirItem* videoTsDir() const { return m_videoTsDir; }
  36.  
  37.   // TODO: implement load- and saveDocumentData since we do not need all those options
  38.  
  39.  protected:
  40.   virtual QString typeString() const { return "video_dvd"; }
  41.  
  42.  private:
  43.   K3bDirItem* m_videoTsDir;
  44. };
  45.  
  46. #endif
  47.